home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ETO Development Tools 4
/
ETO Development Tools 4.iso
/
Tools - Objects
/
E.T.O. #4 Installer
/
Proff Install
< prev
next >
Wrap
Text File
|
1991-05-23
|
981b
|
39 lines
# P R O F F I N S T A L L A T I O N S C R I P T
#
# Copyright Apple Computer, Inc. 1991 - All rights reserved.
#
#
# This script is used to install the Proff tools and examples
# from the E.T.O. #4 distribution compact disk into the MPW folder
# on the destination hard disk.
#
# Options: None
#
# This script makes use of the following Shell variables:
#
# {ToDir} - the name of the MPW folder on the destination hard drive
set Source "{CDVolume}{Tools}Macintosh Programmer’s Workshop:MPW PQR4:Proff:"
If Not "`Exists -d "{ToDir}"`"
Newfolder "{ToDir}"
End
If Not "`Exists -d "{ToDir}:Tools"`"
Newfolder "{ToDir}:Tools"
End
If Not "`Exists -d "{ToDir}:Libraries"`"
Newfolder "{ToDir}:Libraries"
End
If Not "`Exists -d "{ToDir}:Libraries:Libraries"`"
Newfolder "{ToDir}:Libraries:Libraries"
End
Duplicate -y "{Source}Tools:printProff" "{ToDir}:Tools:printProff"
Duplicate -y "{Source}Libraries:Libraries:proff.o" "{ToDir}:Libraries:Libraries:proff.o"
Exit 0